:root {
            --primary-color: #e97a3f;
            --primary-dark: #B8941F;
            --secondary-color: #008753;
            --dark-color: #1A1A1A;
            --dark-light: #2D2D2D;
            --light-color: #F8F9FA;
            --accent-color: #8B0000;
            --text-color: #333333;
            --text-light: #6C757D;
        }

        .text-accent {
    color: #e97a3f
}
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-color);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.3;
        }
        
        .text-serif {
            font-family: 'Playfair Display', serif;
        }
        
        /* Navigation */
.navbar {
    position: sticky; 
    top: 0;
    z-index: 1000;
    padding: 1.2rem 2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fff; 
}

/* Brand */
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #000; 
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 50px;
    margin-right: 10px;
}

/* Nav links */
.nav-link {
    color: #000; 
    font-weight: 500;
    margin: 0 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color); 
}

.nav-link:hover:before {
    width: 100%;
}


.navbar-brand img {
    height: 80px;  
    width: auto;   
}
@media (max-width: 768px) {
    .navbar-brand img {
        height: 60px;
    }
}

/* Scrolled navbar  */
.navbar-scrolled {
    background-color: #fff; 
    padding: 0.8rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Toggler for mobile */
.navbar-toggler {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    border: 2px;
}
        /* Hero Section */
        .hero-section {
            height: 100vh;
            position: relative;
            overflow: hidden;
            color: white;
            display: flex;
            align-items: center;
        }
        
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
            z-index: -1;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            display: inline-block;
            position: relative;
            padding-left: 60px;
        }
        
        .hero-subtitle:before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 50px;
            height: 2px;
            background-color: var(--primary-color);
        }
        
        /* Buttons */
        .btn {
            padding: 0.9rem 2.2rem;
            border-radius: 0;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: var(--dark-color);
        }
        
        .btn-primary:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: var(--dark-color);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: -1;
        }
        
        .btn-primary:hover {
            color: var(--primary-color);
            border-color: var(--dark-color);
        }
        
        .btn-primary:hover:before {
            width: 100%;
        }
        
        .btn-outline-primary {
            border-color: var(--primary-color);
            color: var(--primary-color);
            background: transparent;
        }
        
        .btn-outline-primary:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: var(--primary-color);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            z-index: -1;
        }
        
        .btn-outline-primary:hover {
            color: var(--dark-color);
        }
        
        .btn-outline-primary:hover:before {
            width: 100%;
        }
        

        .hero-section {
  min-height: 100vh;
  overflow: hidden;
}
.hero-image {
  filter: brightness(60%);
}
.hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
}
.text-gold {
  color: #e97a3f; 
}
.btn-gold {
  background-color: #e97a3f;
  color: #000;
  border: none;
}
.btn-gold:hover {
  background-color: #c19e2f;
  color: #000;
}
        /* Section Styles */
        section {
            padding: 6rem 0;
            position: relative;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 3.5rem;
            display: inline-block;
            font-size: 2.5rem;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--primary-color);
        }
        
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-subtitle {
            color: var(--text-light);
            font-size: 1.1rem;
            margin-bottom: 3rem;
            max-width: 700px;
        }
        
        /* About Section */
        .about-section {
            background-color: var(--light-color);
            overflow: hidden;
        }
        
        .about-image {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .about-image img {
            transition: transform 0.7s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-image:before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100px;
            height: 100px;
            border-top: 4px solid var(--primary-color);
            border-left: 4px solid var(--primary-color);
            z-index: 1;
            opacity: 0.7;
        }
        
        .about-image:after {
            content: '';
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            border-bottom: 4px solid var(--primary-color);
            border-right: 4px solid var(--primary-color);
            z-index: 1;
            opacity: 0.7;
        }
        
        .feature-box {
            padding: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            font-size: 1.8rem;
        }
        
        /* Menu Section */
        .menu-section {
            background: linear-gradient(to bottom, #ffffff, #f9f9f9);
        }
        
        .swiper {
            width: 100%;
            padding: 50px 0 80px;
        }
        
        .swiper-slide {
            background-position: center;
            background-size: cover;
            width: 320px;
            height: 450px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
        }
        
        .swiper-slide:hover {
            transform: translateY(-15px);
        }
        
        .menu-card {
            height: 100%;
            position: relative;
            cursor: pointer;
        }
        
        .menu-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        
        .menu-card:hover img {
            transform: scale(1.1);
        }
        
        .menu-card-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 25px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
            color: white;
            transition: all 0.4s ease;
        }
        
        .menu-card:hover .menu-card-content {
            background: linear-gradient(transparent, var(--primary-dark));
        }
        
        .menu-price {
            position: absolute;
            top: -25px;
            right: 25px;
            background: var(--primary-color);
            color: var(--dark-color);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: transparent;
            border: 2px solid var(--primary-color);
            opacity: 1;
        }
        
        .swiper-pagination-bullet-active {
            background: var(--primary-color);
        }
        
        /* Testimonials */
        .testimonial-section {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1604329760661-e71dc83f8f26?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-attachment: fixed;
            color: white;
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            margin: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            background: rgba(212, 175, 55, 0.15);
        }
        
        .testimonial-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1.5rem;
            border: 3px solid var(--primary-color);
        }
        
        .testimonial-rating {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        /* Booking Section */
        .booking-section {
            background-color: var(--light-color);
        }
        
        .booking-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .form-control, .form-select {
            padding: 0.9rem 1.2rem;
            border-radius: 0;
            border: 1px solid #e2e2e2;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
        }
        
        /* Contact Section */
        .contact-info-box {
            padding: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }
        
        .contact-info-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(212, 175, 55, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            font-size: 1.5rem;
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 6rem 0 2rem;
        }
        
        .footer-title {
            position: relative;
            margin-bottom: 1.5rem;
            padding-bottom: 15px;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 15px;
        }
        
        .footer-links a:before {
            content: '→';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-color);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 20px;
        }
        
        .footer-links a:hover:before {
            opacity: 1;
        }
        
        .social-icons {
            display: flex;
            margin-top: 1.5rem;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
        }
        
        .social-icon:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
            color: var(--dark-color);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 4rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: var(--dark-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--dark-color);
            color: var(--primary-color);
            transform: translateY(-5px);
        }
        

        
        .loader {
            width: 60px;
            height: 60px;
            border: 5px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            border-top: 5px solid var(--primary-color);
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .navbar {
                padding: 1rem;
            }
            
            .navbar-scrolled {
                padding: 0.8rem 1rem;
            }
            
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            section {
                padding: 4rem 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.3rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                padding-left: 40px;
            }
            
            .hero-subtitle:before {
                width: 30px;
            }
            
            .btn {
                padding: 0.8rem 1.8rem;
            }
            
            .feature-box, .contact-info-box {
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .swiper-slide {
                width: 280px;
                height: 400px;
            }
        }
.hero-section {
    position: relative;
    min-height: 100vh;           /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;           /* Make sure image covers */
    z-index: -2;                 /* Behind overlay */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.49);  
    z-index: -1;                
}

.hero-content {
    position: relative;
    z-index: 1;                  
}

/* Smooth padding utility */
.py-6 { padding-top: 6rem; padding-bottom: 6rem; }

/* Menu Card Overlay */
.menu-card { position: relative; cursor: pointer; }
.menu-img {
  height: 300px;
  object-fit: cover;
  transition: transform .4s ease;
}
.menu-card:hover .menu-img {
  transform: scale(1.05);
}
.menu-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.1));
  opacity: 0;
  transition: opacity .3s ease;
}
.menu-card:hover .menu-overlay { opacity: 1; }





 :root {
            --primary-color: #e97a3f;
            --primary-dark: #B8941F;
            --secondary-color: #008753;
            --dark-color: #1A1A1A;
            --light-color: #F8F9FA;
            --accent-color: #8B0000;
            --text-color: #333333;
            --text-light: #6C757D;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-color);
            background-color: #f9f9f9;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        
        .text-serif {
            font-family: 'Playfair Display', serif;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 2.5rem;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 70px;
            height: 4px;
            background-color: var(--primary-color);
        }
        
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: var(--dark-color);
            font-weight: 600;
            padding: 0.9rem 2.2rem;
            border-radius: 0;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: var(--dark-color);
            border-color: var(--dark-color);
            color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .menu-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            cursor: pointer;
        }
        
        .menu-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .menu-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        
        .menu-card:hover img {
            transform: scale(1.05);
        }
        
        .menu-card-content {
            padding: 1.5rem;
        }
        
        .menu-price {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        
        .order-btn {
            background-color: var(--dark-color);
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 1rem;
        }
        
        .order-btn:hover {
            background-color: var(--primary-color);
            color: var(--dark-color);
        }
        
        .form-control, .form-select {
            padding: 0.9rem 1.2rem;
            border-radius: 0;
            border: 1px solid #e2e2e2;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
        }
        
        .modal-content {
            border-radius: 0;
            border: none;
        }
        
        .modal-header {
            background-color: var(--dark-color);
            color: white;
            border-bottom: 3px solid var(--primary-color);
        }
        
        .btn-close {
            filter: invert(1);
        }
        
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
            background-size: cover;
            background-position: center;
            padding: 6rem 0;
            color: white;
        }
        
        .menu-tabs {
            margin-bottom: 3rem;
        }
        
        .menu-category-title {
            margin: 3rem 0 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--primary-color);
        }
        
        .nav-pills .nav-link {
            padding: 1rem 2rem;
            font-weight: 600;
            color: var(--text-color);
            border-radius: 0;
            transition: all 0.3s ease;
        }
        
        .nav-pills .nav-link.active {
            background-color: var(--primary-color);
            color: var(--dark-color);
        }
        
        .nav-pills .nav-link:not(.active):hover {
            background-color: rgba(212, 175, 55, 0.1);
        }
        

 /* contact */
.text-gold { color:#e97a3f; }
.btn-gold {
  background:#e97a3f; color:#000; border:none;
  transition: all .3s ease;
}
.btn-gold:hover { background:#c19e2f; color:#000; }
.form-card, .contact-card {
  background:#fff;
  border-radius:1rem;
}
.form-control, .form-select {
  border-radius:.75rem;
  padding:0.75rem 1rem;
  border:1px solid #ddd;
}
.form-control:focus, .form-select:focus {
  border-color:#e97a3f;
  box-shadow:0 0 0 .25rem rgba(212,175,55,.25);
}
.contact-card p i { font-size:1.1rem; 
}

a {
  text-decoration: none;  
}

a:hover, a:focus {
  text-decoration: none;   
}
/* Luxury Section Spacing */
.luxury-bg {
  
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #0f0f0f 100%);
    border-top: 4px solid #e97a3f;
    padding: 4rem 0;
    color: #fff;
}

.luxury-list li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #f5f5f5;
}

.luxury-tagline p {
    font-size: 1.1rem;
    color: #d4af37; 
}

.menu-overlay {
   
    display: none;
}
